home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / fontutil.6 / fontutil / fontutils-0.6 / bzr / bzr_opcodes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-12  |  1.2 KB  |  40 lines

  1. /* bzr_opcodes.h: symbolic names for the BZR commands.  We have the
  2.    luxury here of choosing any values for the opcodes, so we may as well
  3.    be a little mnemonic about it.
  4.    
  5. Copyright (C) 1992 Free Software Foundation, Inc.
  6.  
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #ifndef BZR_OPCODES_H
  22. #define BZR_OPCODES_H
  23.  
  24. #define BOC        'b'
  25. #define BOC_ABBREV    'B'
  26. #define BZR_ID        'K'
  27. #define CHAR_LOC    'c'
  28. #define CHAR_LOC_ABBREV    'C'
  29. #define EOC        'e'
  30. #define LINE        'l'
  31. #define LINE_ABBREV    'L'
  32. #define NO_OP        'x'
  33. #define POST        'P'
  34. #define POST_POST    'Q'
  35. #define SPLINE        's'
  36. #define SPLINE_ABBREV    'S'
  37. #define START_PATH    'p'
  38.  
  39. #endif /* not BZR_OPCODES_H */
  40.